home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / quicktimeintro / play movie / common files / macprefix.h < prev    next >
Encoding:
Text File  |  2000-10-06  |  769 b   |  51 lines

  1. //////////
  2. //
  3. //    File:        MacPrefix.h
  4. //
  5. //    Contains:    Prefix file for our Macintosh projects.
  6. //
  7. //    Written by:    Tim Monroe
  8. //
  9. //    Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //       
  13. //       <1>         11/11/99    rtm        first file
  14. //
  15. //////////
  16.  
  17. #pragma once
  18.  
  19. #ifndef __Prefix_File__
  20.     #define __Prefix_File__
  21.  
  22.  
  23. //////////
  24. //
  25. // header files
  26. //
  27. //////////
  28.  
  29. #define ACCESSOR_CALLS_ARE_FUNCTIONS 1
  30. #define OPAQUE_TOOLBOX_STRUCTS 1
  31. #define TARGET_API_MAC_CARBON 1
  32.  
  33. #include <ConditionalMacros.h>
  34.  
  35. //////////
  36. //
  37. // compiler macros
  38. //
  39. //////////
  40.  
  41. #ifndef PASCAL_RTN
  42. #define PASCAL_RTN                        pascal
  43. #endif
  44.  
  45. #if TARGET_CPU_PPC
  46. #define SOUNDSPROCKET_AVAIL                1
  47. #else
  48. #define SOUNDSPROCKET_AVAIL                0
  49. #endif
  50.  
  51. #endif // __Prefix_File__